| Total Complexity | 1 | 
| Total Lines | 15 | 
| Duplicated Lines | 0 % | 
| Changes | 0 | ||
| 1 | import React, { Component } from "react" | 
            ||
| 6 | |||
| 7 | class GamesPage extends Component { | 
            ||
| 8 |   render() { | 
            ||
| 9 | return (  | 
            ||
| 10 | <Layout>  | 
            ||
| 11 | <SEO  | 
            ||
| 12 | lang="nl-BE"  | 
            ||
| 13 | title="Matchoverzicht voorbereiding"  | 
            ||
| 14 | description="Overzicht van alle gespeelde en toekomstige wedstrijden tijdens de voorbereiding van het nieuwe seizoen."  | 
            ||
| 15 |           path={this.props.location.pathname} | 
            ||
| 16 | />  | 
            ||
| 17 |         <div className={`games__template`}> | 
            ||
| 18 | <MatchesOverview />  | 
            ||
| 19 | </div>  | 
            ||
| 20 | </Layout>  | 
            ||
| 21 | )  | 
            ||
| 26 |